+2008-08-04 Michael Natterer <mitch@imendio.com>
+
+ * gtk/gtkfontsel.c (gtk_font_selection_dialog_get_font):
+ avoid our own deprecated public API and use
+ gtk_font_selection_get_font_internal() instead of
+ gtk_font_selection_get_font().
+
+ (gtk_font_selection_get_font)
+ (gtk_font_selection_dialog_get_font): Add missing
+ "Deprecated: 2.0" to the api doc comments.
+
2008-08-04 Michael Natterer <mitch@imendio.com>
* gdk/tests/Makefile.am: add the generated PNGs to CLEANFILES.
/**
* gtk_font_selection_get_font:
* @fontsel: a #GtkFontSelection
- *
- * Return value: A #GdkFont.
+ *
+ * Return value: A #GdkFont.
+ *
+ * Deprecated: 2.0: Use gtk_font_selection_get_font_name() instead.
**/
GdkFont *
gtk_font_selection_get_font (GtkFontSelection *fontsel)
{
g_return_val_if_fail (GTK_IS_FONT_SELECTION (fontsel), NULL);
-
+
return gtk_font_selection_get_font_internal (fontsel);
}
*
* Return value: the #GdkFont from the #GtkFontSelection for the
* currently selected font in the dialog.
+ *
+ * Deprecated: 2.0: Use gtk_font_selection_dialog_get_font_name() instead.
*/
GdkFont*
gtk_font_selection_dialog_get_font (GtkFontSelectionDialog *fsd)
{
g_return_val_if_fail (GTK_IS_FONT_SELECTION_DIALOG (fsd), NULL);
- return gtk_font_selection_get_font (GTK_FONT_SELECTION (fsd->fontsel));
+ return gtk_font_selection_get_font_internal (GTK_FONT_SELECTION (fsd->fontsel));
}
/**